home *** CD-ROM | disk | FTP | other *** search
/ Delphi Developer's Kit 1996 / Delphi Developer's Kit 1996.iso / power / arrays / arrtest1.dfm / arrtest1.txt
Text File  |  1995-12-22  |  6KB  |  268 lines

  1. object MainForm: TMainForm
  2.   Left = 456
  3.   Top = 168
  4.   BorderIcons = [biSystemMenu]
  5.   BorderStyle = bsSingle
  6.   Caption = 'Test of Resizeable Arrays'
  7.   ClientHeight = 388
  8.   ClientWidth = 527
  9.   Font.Color = clWindowText
  10.   Font.Height = -17
  11.   Font.Name = 'System'
  12.   Font.Style = []
  13.   Menu = MainMenu1
  14.   PixelsPerInch = 120
  15.   Position = poScreenCenter
  16.   OnClose = FormClose
  17.   OnCreate = FormCreate
  18.   OnDestroy = FormDestroy
  19.   TextHeight = 20
  20.   object ArrayProperties: TGroupBox
  21.     Left = 200
  22.     Top = 9
  23.     Width = 313
  24.     Height = 97
  25.     Caption = 'Array Properties'
  26.     TabOrder = 2
  27.     object Label1: TLabel
  28.       Left = 16
  29.       Top = 32
  30.       Width = 92
  31.       Height = 20
  32.       Caption = 'Array type: '
  33.     end
  34.     object ArrayType: TLabel
  35.       Left = 120
  36.       Top = 32
  37.       Width = 84
  38.       Height = 20
  39.       Caption = 'ArrayType'
  40.     end
  41.     object ArraySize: TLabel
  42.       Left = 120
  43.       Top = 56
  44.       Width = 78
  45.       Height = 20
  46.       Caption = 'ArraySize'
  47.     end
  48.     object Label2: TLabel
  49.       Left = 16
  50.       Top = 56
  51.       Width = 88
  52.       Height = 20
  53.       Caption = 'Array size :'
  54.     end
  55.   end
  56.   object ArrayGroupbox: TGroupBox
  57.     Left = 8
  58.     Top = 8
  59.     Width = 185
  60.     Height = 369
  61.     Caption = '&Array Items'
  62.     TabOrder = 0
  63.   end
  64.   object ArrayItems: TListBox
  65.     Left = 24
  66.     Top = 32
  67.     Width = 153
  68.     Height = 329
  69.     ExtendedSelect = False
  70.     ItemHeight = 20
  71.     TabOrder = 1
  72.     OnClick = ArrayItemsClick
  73.   end
  74.   object EditItems: TGroupBox
  75.     Left = 200
  76.     Top = 120
  77.     Width = 313
  78.     Height = 201
  79.     Caption = '&Edit Array Items'
  80.     TabOrder = 3
  81.     object Label3: TLabel
  82.       Left = 16
  83.       Top = 36
  84.       Width = 45
  85.       Height = 20
  86.       Caption = '&Value'
  87.       FocusControl = EdtItem
  88.     end
  89.     object Label4: TLabel
  90.       Left = 16
  91.       Top = 76
  92.       Width = 47
  93.       Height = 20
  94.       Caption = 'Inde&x:'
  95.       FocusControl = EdtIndex
  96.     end
  97.     object EdtItem: TEdit
  98.       Tag = 100
  99.       Left = 88
  100.       Top = 32
  101.       Width = 209
  102.       Height = 29
  103.       MaxLength = 20
  104.       TabOrder = 0
  105.     end
  106.     object BtnSet: TButton
  107.       Left = 16
  108.       Top = 112
  109.       Width = 129
  110.       Height = 33
  111.       Caption = '&Set'
  112.       Default = True
  113.       TabOrder = 2
  114.       OnClick = BtnSetClick
  115.     end
  116.     object BtnGet: TButton
  117.       Left = 168
  118.       Top = 112
  119.       Width = 129
  120.       Height = 33
  121.       Caption = '&Get'
  122.       TabOrder = 3
  123.       OnClick = BtnGetClick
  124.     end
  125.     object EdtIndex: TEdit
  126.       Left = 88
  127.       Top = 72
  128.       Width = 209
  129.       Height = 29
  130.       TabOrder = 1
  131.     end
  132.     object BtnInsert: TButton
  133.       Left = 16
  134.       Top = 152
  135.       Width = 129
  136.       Height = 33
  137.       Caption = '&Insert'
  138.       TabOrder = 4
  139.       OnClick = BtnInsertClick
  140.     end
  141.     object BtnDelete: TButton
  142.       Left = 168
  143.       Top = 152
  144.       Width = 129
  145.       Height = 33
  146.       Caption = '&Delete'
  147.       TabOrder = 5
  148.       OnClick = BtnDeleteClick
  149.     end
  150.   end
  151.   object BtnClose: TButton
  152.     Left = 368
  153.     Top = 336
  154.     Width = 129
  155.     Height = 33
  156.     Caption = 'Close'
  157.     ModalResult = 2
  158.     TabOrder = 5
  159.     OnClick = MnuFileExitClick
  160.   end
  161.   object BtnFill: TButton
  162.     Left = 216
  163.     Top = 336
  164.     Width = 129
  165.     Height = 33
  166.     Caption = '&Fill'
  167.     TabOrder = 4
  168.     OnClick = BtnFillClick
  169.   end
  170.   object MainMenu1: TMainMenu
  171.     Left = 192
  172.     Top = 360
  173.     object Datei1: TMenuItem
  174.       Caption = '&File'
  175.       OnClick = Datei1Click
  176.       object MnuFileOpen: TMenuItem
  177.         Caption = '&Open...'
  178.         OnClick = MnuFileOpenClick
  179.       end
  180.       object MnuFileSaveAs: TMenuItem
  181.         Caption = 'Save &As...'
  182.         OnClick = MnuFileSaveAsClick
  183.       end
  184.       object N4: TMenuItem
  185.         Caption = '-'
  186.       end
  187.       object MnuFileReadStream: TMenuItem
  188.         Caption = '&Read Stream...'
  189.         OnClick = MnuFileReadStreamClick
  190.       end
  191.       object MnuFileWriteStream: TMenuItem
  192.         Caption = '&Write Stream...'
  193.         OnClick = MnuFileWriteStreamClick
  194.       end
  195.       object N3: TMenuItem
  196.         Caption = '-'
  197.       end
  198.       object MnuTextfileRead: TMenuItem
  199.         Caption = 'R&ead Textfile...'
  200.         Enabled = False
  201.         OnClick = MnuTextfileReadClick
  202.       end
  203.       object MnuTextfileWrite: TMenuItem
  204.         Caption = 'Write &Textfile...'
  205.         Enabled = False
  206.         OnClick = MnuTextfileWriteClick
  207.       end
  208.       object N5: TMenuItem
  209.         Caption = '-'
  210.       end
  211.       object MnuFileExit: TMenuItem
  212.         Caption = 'E&xit'
  213.         OnClick = MnuFileExitClick
  214.       end
  215.     end
  216.     object Arrays1: TMenuItem
  217.       Caption = '&Arrays'
  218.       OnClick = Arrays1Click
  219.       object MnuUse: TMenuItem
  220.         Caption = '&Use...'
  221.         OnClick = MnuUseClick
  222.       end
  223.       object MnuArraysRedim: TMenuItem
  224.         Caption = '&ReDim...'
  225.         OnClick = MnuArraysRedimClick
  226.       end
  227.       object MnuArraysDestroy: TMenuItem
  228.         Caption = '&Destroy'
  229.         Enabled = False
  230.       end
  231.       object MnuInspect: TMenuItem
  232.         Caption = '&Inspect...'
  233.         OnClick = MnuInspectClick
  234.       end
  235.       object MnuArrayEnlarge: TMenuItem
  236.         Caption = 'Enlarge &View...'
  237.         OnClick = MnuArrayEnlargeClick
  238.       end
  239.       object N1: TMenuItem
  240.         Caption = '-'
  241.       end
  242.       object MnuArraysSum: TMenuItem
  243.         Caption = '&Sum'
  244.         OnClick = MnuArraysSumClick
  245.       end
  246.       object MnuArraysFind: TMenuItem
  247.         Caption = '&Find...'
  248.         OnClick = MnuArraysFindClick
  249.       end
  250.       object MnuArraysSort: TMenuItem
  251.         Caption = 'S&ort...'
  252.         OnClick = MnuArraysSortClick
  253.       end
  254.       object MnuArraysClone: TMenuItem
  255.         Caption = '&Clone'
  256.         OnClick = MnuArraysCloneClick
  257.       end
  258.       object N2: TMenuItem
  259.         Caption = '-'
  260.       end
  261.       object MnuCopyItems: TMenuItem
  262.         Caption = 'Copy  &Items...'
  263.         OnClick = MnuCopyItemsClick
  264.       end
  265.     end
  266.   end
  267. end
  268.